home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Languguage OS 2
/
Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO
/
a_utils
/
perl
/
prlbkxmp.lha
/
ch5
/
forkdaemon
< prev
next >
Wrap
Text File
|
1991-01-08
|
296b
|
16 lines
unless (fork) { # this is the child
unless (fork) { # this is the child's child
sleep 1 until getppid == 1;
_L_O_N_G_O_P_E_R_A_T_I_O_N;
exit 0;
}
# first child exits quickly
exit 0;
}
wait; # parent reaps first child quickly
# or...
fork && exit;
setpgrp(0,$$);